home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / guile-ii.src / guile-ii / guile-src / libguile / kw.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-16  |  3.8 KB  |  160 lines

  1. /*    Copyright (C) 1995 Free Software Foundation, Inc.
  2.  * 
  3.  * This program is free software; you can redistribute it and/or modify
  4.  * it under the terms of the GNU General Public License as published by
  5.  * the Free Software Foundation; either version 2, or (at your option)
  6.  * any later version.
  7.  * 
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.  * GNU General Public License for more details.
  12.  * 
  13.  * You should have received a copy of the GNU General Public License
  14.  * along with this software; see the file COPYING.  If not, write to
  15.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  16.  *
  17.  * As a special exception, the Free Software Foundation gives permission
  18.  * for additional uses of the text contained in its release of GUILE.
  19.  *
  20.  * The exception is that, if you link the GUILE library with other files
  21.  * to produce an executable, this does not by itself cause the
  22.  * resulting executable to be covered by the GNU General Public License.
  23.  * Your use of that executable is in no way restricted on account of
  24.  * linking the GUILE library code into it.
  25.  *
  26.  * This exception does not however invalidate any other reasons why
  27.  * the executable file might be covered by the GNU General Public License.
  28.  *
  29.  * This exception applies only to the code released by the
  30.  * Free Software Foundation under the name GUILE.  If you copy
  31.  * code from other Free Software Foundation releases into a copy of
  32.  * GUILE, as the General Public License permits, the exception does
  33.  * not apply to the code that you add in this way.  To avoid misleading
  34.  * anyone as to the status of such modified files, you must delete
  35.  * this exception notice from them.
  36.  *
  37.  * If you write modifications of your own for GUILE, it is your choice
  38.  * whether to permit this exception to apply to your modifications.
  39.  * If you do not wish that, delete this exception notice.  
  40.  */
  41.  
  42.  
  43. #include <stdio.h>
  44. #include "_scm.h"
  45.  
  46.  
  47.  
  48. #ifdef __STDC__
  49. static sizet
  50. free_kw (SCM obj)
  51. #else
  52. static sizet
  53. free_kw (obj)
  54.      SCM obj;
  55. #endif
  56. {
  57.   return 0;
  58. }
  59.  
  60. #ifdef __STDC__
  61. static int
  62. prin_kw (SCM exp, SCM port, int writing)
  63. #else
  64. static int
  65. prin_kw (exp, port, writing)
  66.      SCM exp;
  67.      SCM port;
  68.      int writing;
  69. #endif
  70. {
  71.   scm_puts(":", port);
  72.   scm_puts(1 + CHARS (CDR (exp)), port);
  73.   return 1;
  74. }
  75.  
  76. int scm_tc16_kw;
  77.  
  78. static scm_smobfuns kw_smob = {scm_markcdr, free_kw, prin_kw, 0};
  79.  
  80.  
  81. PROC (s_make_keyword, "make-keyword", 1, 0, 0, scm_make_keyword);
  82. #ifdef __STDC__
  83. SCM
  84. scm_make_keyword (SCM symbol)
  85. #else
  86. SCM
  87. scm_make_keyword (symbol)
  88.      SCM symbol;
  89. #endif
  90. {
  91.   SCM vcell;
  92.  
  93.   ASSERT (NIMP (symbol) && SYMBOLP(symbol) && ('-' == CHARS(symbol)[0]),
  94.       symbol, ARG1, s_make_keyword);
  95.  
  96.  
  97.   vcell = scm_sym2ovcell_soft (symbol, kw_obarray);
  98.   if (vcell == BOOL_F)
  99.     {
  100.       SCM kw;
  101.       NEWCELL(kw);
  102.       DEFER_INTS;
  103.       CAR(kw) = (SCM)scm_tc16_kw;
  104.       CDR(kw) = symbol;
  105.       ALLOW_INTS;
  106.       scm_intern_symbol (kw_obarray, symbol);
  107.       vcell = scm_sym2ovcell_soft (symbol, kw_obarray);
  108.       CDR (vcell) = kw;
  109.     }
  110.   return CDR (vcell);
  111. }
  112.  
  113. PROC (s_keyword_p, "keyword?", 1, 0, 0, scm_keyword_p);
  114. #ifdef __STDC__
  115. SCM
  116. scm_keyword_p (SCM obj)
  117. #else
  118. SCM
  119. scm_keyword_p (obj)
  120.      SCM obj;
  121. #endif
  122. {
  123.   return ( (NIMP(obj) && KEYWORDP (obj))
  124.       ? BOOL_T
  125.       : BOOL_F);
  126. }
  127.  
  128.  
  129.  
  130. PROC (s_keyword_symbol, "keyword-symbol", 1, 0, 0, scm_keyword_symbol);
  131. #ifdef __STDC__
  132. SCM
  133. scm_keyword_symbol (SCM kw)
  134. #else
  135. SCM
  136. scm_keyword_symbol (kw)
  137.      SCM kw;
  138. #endif
  139. {
  140.   ASSERT (NIMP (kw) && KEYWORDP (kw), kw, ARG1, s_keyword_symbol);
  141.   return CDR (kw);
  142. }
  143.  
  144.  
  145.  
  146.  
  147. #ifdef __STDC__
  148. void
  149. scm_init_kw (void)
  150. #else
  151. void
  152. scm_init_kw ()
  153. #endif
  154. {
  155.   scm_tc16_kw = scm_newsmob (&kw_smob);
  156.   kw_obarray = scm_make_vector (MAKINUM (256), EOL);
  157. #include "kw.x"
  158. }
  159.  
  160.